SPB Git forge

spb/hilmacorp

Public
1commits 1branches 0releases
29.2 MBsize
maindefault branch
20 days agolast push
TypeScript 93.3% JavaScript 4.4% CSS 2.3%
1.2 KB · 39 lines tsx
Raw Blame History
1/**2 * Author: Simon-Pierre Boucher3 * Contact: contact@spboucher.ai4 * Project: Hilmacorp.ai — Web Platform5 * File: app/[locale]/not-found.tsx6 * Description: Locale-aware 404 page (light theme)7 */89import Link from "next/link";10import Container from "@/components/Container";1112export default function NotFound() {13  return (14    <Container className="py-32 text-center">15      <p className="font-mono text-sm uppercase tracking-[0.3em] text-accent">404</p>16      <h1 className="mt-4 font-display text-3xl font-semibold text-ink">17        Page not found / Page introuvable18      </h1>19      <p className="mt-4 text-ink-soft">20        The page you are looking for does not exist. / La page que vous cherchez n&apos;existe pas.21      </p>22      <div className="mt-8 flex justify-center gap-4">23        <Link24          href="/en"25          className="rounded-full border border-line-strong px-5 py-2 text-sm text-ink hover:border-accent hover:text-accent"26        >27          English home28        </Link>29        <Link30          href="/fr"31          className="rounded-full border border-line-strong px-5 py-2 text-sm text-ink hover:border-accent hover:text-accent"32        >33          Accueil français34        </Link>35      </div>36    </Container>37  );38}39